home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / mig / Mig_ReturnHosts.c < prev    next >
C/C++ Source or Header  |  1990-09-24  |  3KB  |  126 lines

  1. /* 
  2.  * Mig_ReturnHosts.c --
  3.  *
  4.  *    Source code for the Mig_ReturnHosts procedure.
  5.  *    This procedure returns the specified hosts to the
  6.  *    pool of idle hosts.
  7.  *
  8.  * Copyright 1990 Regents of the University of California
  9.  * Permission to use, copy, modify, and distribute this
  10.  * software and its documentation for any purpose and without
  11.  * fee is hereby granted, provided that the above copyright
  12.  * notice appear in all copies.  The University of California
  13.  * makes no representations about the suitability of this
  14.  * software for any purpose.  It is provided "as is" without
  15.  * express or implied warranty.
  16.  */
  17.  
  18. #ifndef lint
  19. static char rcsid[] = "$Header: /sprite/src/lib/c/mig/RCS/Mig_ReturnHosts.c,v 2.2 90/09/24 14:46:48 douglis Exp $ SPRITE (Berkeley)";
  20. #endif not lint
  21.  
  22.  
  23. #include <sprite.h>
  24. #include <mig.h>
  25. #include <host.h>
  26. #include <errno.h>
  27. #include <stdio.h>
  28. #include "migInt.h"
  29.  
  30. extern int errno;
  31. extern char *strerror();
  32. extern char *malloc();
  33.  
  34.  
  35. /*
  36.  *----------------------------------------------------------------------
  37.  *
  38.  * Mig_ReturnHosts --
  39.  *
  40.  *    Return hosts to the pool of idle hosts.  
  41.  *
  42.  * Results:
  43.  *    A non-zero status indicates an error, in which case errno reflects
  44.  *    the error from the migration daemon.
  45.  *
  46.  * Side effects:
  47.  *      None.
  48.  *
  49.  *----------------------------------------------------------------------
  50.  */
  51. int
  52. Mig_ReturnHosts(numHosts, hostArray)
  53.     int numHosts;        /* Number of hosts to return, or
  54.                  * MIG_ALL_HOSTS. */
  55.     int *hostArray;        /* Array of hostIDs, or NULL if all hosts. */
  56. {
  57.     int status;            /* Status of system calls. */
  58.     int dummyArray[1];        /* Array used in the event of all hosts being
  59.                  * returned. */
  60.     int *arrayPtr;        /* Pointer specifying which array to use. */
  61.     int size;            /* Size of buffer for ioctl. */
  62.     int i;            /* Counter. */
  63.     int actualHosts;        /* Number of hosts we really want to return. */
  64.     int *allocArray;        /* Array used in the event of specific hosts
  65.                    being returned.  */
  66.  
  67.  
  68.     if (mig_GlobalPdev < 0) {
  69.     errno = EINVAL;
  70.     return(-1);
  71.     }
  72.     if (numHosts <= 0 && hostArray != (int *) NULL) {
  73.     errno = EINVAL;
  74.     return(-1);
  75.     }
  76.  
  77.     if (hostArray == (int *) NULL) {
  78.     MigHostCache(0, MIG_CACHE_REMOVE_ALL);
  79.     arrayPtr = dummyArray;
  80.     allocArray = (int *) NULL;
  81.     dummyArray[0] = MIG_ALL_HOSTS;
  82.     size = sizeof(int);
  83.     } else {
  84.     allocArray = (int *) malloc(numHosts * sizeof(int));
  85.     if (allocArray == (int *) NULL) {
  86.         errno = ENOMEM;
  87.         return(-1);
  88.     }
  89.     for (i = 0, actualHosts = 0; i < numHosts; i++) {
  90.         int host = hostArray[i];
  91.         if (Mig_ConfirmIdle(host) &&
  92.         MigHostCache(host, MIG_CACHE_REMOVE, FALSE)) {
  93.         allocArray[actualHosts] = host;
  94.         actualHosts++;
  95.         }
  96.     }
  97.     if (actualHosts == 0) {
  98.         return(0);
  99.     }
  100.     arrayPtr = allocArray;
  101.     size = actualHosts * sizeof(int);
  102.     }
  103.     if (MigSetAlarm() < 0) {
  104.     fprintf(stderr,
  105.         "Error setting alarm for contact with migd.\n");
  106.     return(-1);
  107.     }
  108.     status = Fs_IOControl(mig_GlobalPdev, IOC_MIG_DONE,
  109.               size, (char *) arrayPtr, 0, (char *) NULL);
  110.     if (MigClearAlarm() < 0) {
  111.     fprintf(stderr,
  112.         "Error clearing alarm for contact with migd.\n");
  113.     }
  114.     if (allocArray != (int *) NULL) {
  115.     free((char *) allocArray);
  116.     }
  117.     if (status != SUCCESS) {
  118.     fprintf(stderr,
  119.            "Mig_ReturnHosts: error during ioctl to global master: %s\n",
  120.            Stat_GetMsg(status));
  121.     errno = Compat_MapCode(status);
  122.     return(-1);
  123.     }
  124.     return(0);
  125. }
  126.